home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / org / flintparticles / particles / ParticleFactory.as < prev   
Encoding:
Text File  |  2011-10-17  |  220 b   |  12 lines

  1. package org.flintparticles.particles
  2. {
  3.    public interface ParticleFactory
  4.    {
  5.        
  6.       
  7.       function createParticle() : Particle;
  8.       
  9.       function disposeParticle(param1:Particle) : void;
  10.    }
  11. }
  12.